home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Audio / Patchmix / Source / Coordinator.h < prev    next >
Text File  |  1992-08-01  |  775b  |  40 lines

  1. /*
  2.     Coordinator.h
  3.     by Joe Freeman, David LaVallee
  4.     Subprocess Example, Release 2.0
  5.     NeXT Computer, Inc.
  6.  
  7.     You may freely copy, distribute and reuse the code in this example.
  8.     NeXT disclaims any warranty of any kind, expressed or implied, as to
  9.     its fitness for any particular use.
  10. */
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @interface Coordinator:Object
  15. {
  16.         id    theSubprocess;
  17.         id    stringTable;
  18.         id      pathNames;
  19.         id    instName;
  20.         id    instPath;
  21.         id     outputWindow;
  22.         id    commandView;
  23.         id    sampRate;
  24.         id    numChans;
  25.     id    scoreData;
  26.     
  27. }
  28.  
  29. - subprocessOutput:(char *)buffer;
  30. - subprocessDone;
  31. - writeCode: (char *)buffer;
  32. - runIt: (char *)buffer;
  33. - rescaleIt: (char *)buffer;
  34. - playIt:(char *)buffer;
  35. - compileInst: (char *)buffer;
  36. - writeScore: (char *)buffer;
  37.  
  38.  
  39. @end
  40.